@charset "utf-8";
/* CSS Document */
	/* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
  
  @media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
  }
  
  @media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
  }

.logo{
    width:50px;
	height: 50px;
    background-image:url("../img/logoo.jpeg");
	margin-left: 21px;
	color:#d4bfa2;  }
.icon{
	width:30px;
	margin:auto;
	color: #ac851b;
}
.nav-link.active{
	background-color:transparent;
	border-radius: 3px 2px 2px 3px;
    transition:0.1 ease;
}
.nav-link:hover, active{
/*	background-color:hsla(64,21%,44%,1.00);*/
	border-radius: 3px 2px 2px 3px;
	border-style: groove;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color:#242222;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color:#242222;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color:#242222;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background:white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color:#242222;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
li a .dropdown-item{
  width: 100%;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 70px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color:#242222;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background:white;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background:#c0a457;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background:#c0a457;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
      font-size: 15px;
  }
}
@media (max-width:800px){
nav{
     position:fixed; 
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: white;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #242222;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  left: 0;
  box-shadow: none;
  display: none;
  background-color: white;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
  background-color: white;
  width: 100%;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  width: 100%;
  background-color:white;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  left: 0;
  justify-content: space-between;
  width: 100%;
  background-color: white;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;

} 
}

.search-box {
  position: relative;
  height: 40px;
  width: 70px;
}

.search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #242222;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: white;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #c0a457;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

.result-box {
  max-height: 300px;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: none;
}

.navbar.showInput .result-box {
  display: block;
}

.result-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.result-box li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.result-box li:hover {
  background: #f0f0f0;
}

.result-box a {
  text-decoration: none;
  color: #333;
}
.result-box {
  max-height: 300px;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);}
  
.btns1 {
	border-radius:10px 10px 10px 10px;
	background-color:#ac851b;
	color:white;
	border: 1px solid rgb(53, 50, 50);
	font-weight:bold;
	font-family:Verdana, Geneva, Tahoma, sans-serif ;
	border: none;
	text-decoration: none;
	cursor: pointer;
	width: 35%;
	height: 50px;
	
	  transition: 0.7 ease-in;
  }
  .btns2 {
	border-radius:10px 10px 10px 10px;
	background-color:#8d773b;
	color:white;
	border: 1px solid rgb(53, 50, 50);
	font-weight:bold;
	font-family:Verdana, Geneva, Tahoma, sans-serif ;
	border: none;
	text-decoration: none;
	cursor: pointer;
	width: 35%;
	height: 50px;
	  transition: 0.7 ease-in;
  }
  
  /* Add a hover effect for buttons */
  .btns1:hover , .btns2 :hover {
	opacity: 0.8;
	  color:white;
	  
  }
  .btns1:hover, .btns2 a:hover{
	  color:white;
  }
  .btns1 a {
	 text-decoration: none;
	  color:white;
	  background-color:#ac851b;
	}
	.btns2 a {
		text-decoration: none;
		 color:white;
		 background-color:#8d773b;
	   }
	/* When you mouse over the navigation links, change their color */
	.btns1 a:hover, .btns2 a:hover {
		text-decoration: none;
	  color:white;
	}
.icon{
	width:30px;
	margin:auto;
	color: #ac851b;
}
.contact{
	background-color: hsla(146,63%,9%,1.00);
	color: hsla(50,78%,25%,1.00);
	height: 320px;
}


.txt-s{
	margin-top:70px;
}


.hline{
	background-color: hsla(146,63%,9%,1.00);
	color: hsla(50,78%,25%,1.00);
	height:42px;
}
.rh{
/*	padding-left:85px;*/
	margin: auto;
	background-size: cover;
	max-width: 100%;
}
.box{
	position: relative;
}
.hennaimg {
    opacity:1.0;
	transition:all 0.4s ease-in-out;
	background-size: cover;
	position: relative;
	background-repeat: no-repeat;
	z-index: 2;
/*	background-image:url("../img/bridalhenna.png");*/
}
.hennaimg a{
	text-decoration: none;
	color:black;
}
.hennaimg a:hover{
	text-decoration: none;
	color:black;
}
.hennaimg img{
	object-fit: cover;
	resize: both;
	width:270px;
	height: 270px;
}
.box:hover .hennaimg{
/*    opacity:0.2;*/
	transform: translate(-1.5rem,-1.5rem);
}
.box:hover .contenttext{
	transform: translate(3.5rem,3.5rem);
}
figcaption{
	opacity: 0.4;
	color:hsla(146,63%,9%,1.00);
	padding: 21px;
	text-align: center;
	color:black;
	font-weight:bold;
	font-size: 30px;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	transition: opacity .3 ease;
}

.hennaimg:hover figcaption{
/*
	from{
  text-shadow: 0 0 10px #fff,
		0 0 20px #fff,
		0 0 30px hsla(50,78%,25%,1.00),
		0 0 40px hsla(50,78%,25%,1.00),
		0 0 50px hsla(50,78%,25%,1.00),;
}
	to{
		0 0 60px hsla(50,78%,25%,1.00),
		0 0 40px hsla(50,78%,25%,1.00),
	}
*/
	opacity: 1.2;
}
.responsive{
	height: auto;
	width:100%;
	min-height: 211px;
}
.fullimg{
	background-image:url("../img/b9.png");
	background-size: cover;
	background-position:center;
	background-attachment: fixed;
	width: 100%;
	max-width:100%;
	height:551px;
	position: sticky;
}
/* Slideshow container */
.slideshow-container {
  position: relative;
}

/* Slides */
.mySlides1 {
  
  padding: 20px;				
  text-align: center;
}
.mySlides {
  display:none;
  padding: 20px;				
  text-align: center;
}

/* Next & previous buttons */
.prev{
  cursor: pointer;
  position:relative;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 3px 0px 0px 3px;
  user-select: none;
}

/* Position the "next button" to the right */
.next{
  cursor: pointer;
  position:relative;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  user-select: none;
  border-radius: 0px 3px 3px 0px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color:hsla(48,12%,50%,1.00);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 10px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin:0 2px;
  background-color:gray
	  ;
  border-radius: 50%;
  display: inline-block;
  transition:hsla(146,63%,9%,1.00)  0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
	background-color:hsla(49,16%,34%,1.00);
}

/* Add an italic font style to all quotes */
q {
	text-align: center;
	font-size:21px;
	font-family:Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif';
	color: hsla(48,12%,50%,1.00);
}

/* Add a blue color to the author */
.author {
	font-size: 32px;
	color: hsla(50,78%,25%,1.00); 
	font-family:Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif';
}
.enq{
	background-color: hsla(15,29%,56%,1.00);
}

.btne{
	border-radius:0px 0px 0px;
	font-size: 17px;
	font-weight: bold;
	color: white;
	background-color:#711c1c;
	width: 120px;
	height:52px;
  text-decoration: none;
/*	transition:1.7s ease-in;*/
}
.btne a{
  color: #711c1c;
  background-color:white;
  text-decoration: none;
}
.btne a:hover{
  background-color:#711c1c;
  color:white;
}
.btne:hover{
	background-color: white;
	color: #711c1c;
}

.sectionf{
	width:100%;
	height: 35px;
	border-radius:10px 10px 0px 0px;
	box-shadow:1px 1px 2px 1px grey;
	background-color:#711c1c;
	color:white;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";

}
.arrow{
	background-color: white;
	cursor: pointer;
}
.faqs{
	background-color: hsla(50,25%,54%,1.00);
}
.faq{
	background-color: white;
	border-radius:7px 7px 7px 7px ;
 border-right:1px solid #5f5e5e;
 border-bottom:2px solid #696969;
}
.question{
	display: block;
}
.answer{
	display:inline-block;
}
/*Footer*/
.fa-instagram{
	background-color: hsla(358,78%,20%,1.00);
	color: white;
	border-radius:50px 50px 50px 49px;
  }
  .fa-facebook{
	color:#2156b0;
	background-color:white;
	border-radius:52px 52px 52px 52px;
  }
  .fa-tiktok{
	color: white;
	background-color:black;
  }
  footer li a, p a {
  text-decoration: none;
  color:#2e2f30;
  }
  footer li a:hover{
  text-decoration: none;
  color:rgb(158, 138, 86);
  }
  footer p a:hover{
  text-decoration: none;
  color:rgb(158, 138, 86);
  }
